home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / zpack.zip / ZPACK.DOC < prev   
Text File  |  1987-12-10  |  7KB  |  168 lines

  1.           
  2.                            Z-MODEM with Procomm
  3.  
  4.  
  5.      Z-modem is a super fast file transfer protocol.  It supports
  6. a crash recovery feature that enables you to pick up where you
  7. left of should you have to abort the transfer for any reason.  I
  8. recommend using it whenever possible.
  9.  
  10.     Many think, well my terminal program doesn't include Z-modem,
  11. so I won't be able to take advantage of it.  Wrong.  With this
  12. mini-tutorial perhaps I can help you to use Z-Modem.  Although
  13. this is titled as Zmodem for Procomm, these procedures will work
  14. equally well with TELIX, Qmodem, or any other terminal program
  15. that allows a "JUMP to DOS".  And if you use BOYAN simply place 
  16. DSZ.COM the same directory and it will pop up on your protocol
  17. list the next time you go to upload or download.
  18.  
  19.      You should find the following files in ZPACK.ARC
  20.  
  21.           ZPACK.DOC.....This file
  22.           RZ.BAT........For receiving files with hard disk.
  23.           RZF.BAT.......For receiving files with floppy disk.
  24.           SZ.BAT........For sending files with either system.
  25.           Z-END.COM.....A sound program to alert you that the    
  26.                       transfer is complete.
  27.  
  28.      Other files you will need:
  29.  
  30.           DSZ1126.ARC...Latest version of DSZ.COM.
  31.  
  32.      This version of DSZ was the latest available when this was
  33. written, subsequent versions of DSZ will also work with this
  34. procedure.  Please note that this procedure uses DSZ.COM.  You
  35. can also find DSZ.EXE which I believe was written for high speed 
  36. modems.  The .EXE version also uses more memory.
  37.  
  38.  
  39.                            DOWNLOADING
  40.  
  41.      To download a file go through the usual motions with the
  42. host system i.e. select your file, select the protocol etc.  Most
  43. systems will then give you a message to start the download
  44. procedure from your end.  If you don't see such a message, don't
  45. worry wait a few seconds and you should see something like this:
  46. <00000000fe62 
  47. <00000000fe87
  48. Or something like that.  Anyway whether you get the message or
  49. not really doesn't matter.  To initiate the download do this with
  50. PROCOMM:
  51.           ALT-F4...Jumps to DOS, wait for the DOS prompt, then;
  52.           RZ.......Type the name of the batch file you are using
  53.  
  54.      Here is a listing of the batch file and an explanation of
  55. each line:
  56.  
  57.           ECHO OFF   ;Cuts off screen viewing of the rest of the
  58.                       batch file.
  59.  
  60.           PATH=C:\PROCOMM\DSZ.COM   ;This tells the batch file
  61.                                      where to find Z-modem
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.           DSZ rz -r C:/TEMP   ;This command starts Zmodem.  DSZ
  70.                                is the program name, rz is the 
  71.                                command to receive (download)
  72.                                files, -r invokes crash recovery,
  73.                                C:/TEMP sends the download to
  74.                                the directory of your choice (you
  75.                                can change TEMP to whatever       
  76. directory you use).
  77.  
  78.           C:\PROCOMM\   ;Returns you to the directory that your
  79.                          terminal program is located.  (you may  
  80.                        also change this to the directory you     
  81.                     use).
  82.  
  83.           PATH=C:\;\DOS...etc  ;resets your default path.
  84.  
  85.           Z-END   ;Runs the alarm file to let you know that the
  86.                    transfer is complete. 
  87.  
  88.           EXIT  ;Returns you to the PROCOMM terminal screen.
  89.  
  90.  If you are using a floppy based system do the same thing except
  91. type RZF at the DOS prompt.  Keep in mind that to be able to
  92. "JUMP to DOS" you must have Procomm on a system disk (if your
  93. Procomm disk is self-bootable your OK).  The following is listing
  94. of RZF.BAT:
  95.  
  96.  
  97.            ECHO OFF   ;Cuts off screen viewing of the rest of the
  98.                        batch file.
  99.  
  100.            DSZ rz -r B:/      ;This command starts Zmodem.  DSZ
  101.                                is the program name, rz is the 
  102.                                command to receive (download)
  103.                                files, -r invokes crash recovery,
  104.                                B:/ sends the download to the b:  
  105.                                drive.
  106.  
  107.           Z-END   ;Runs the alarm file to let you know that the  
  108.                    transfer is complete. 
  109.  
  110.           EXIT  ;Returns you to the PROCOMM terminal screen.
  111.  
  112.                     
  113.  
  114.                             UPLOADING
  115.  
  116.      To upload, do your thing with the Host i.e. tell the host
  117. the file name, write your file description (this could be before
  118. or after the file transfer) wait for the message to begin or the
  119. cryptic <0000000000fe6 then once again type:
  120.  
  121.                ALT-F4  then at the DOS prompt,
  122.                SZ B:BUBBA.ARC  ; Its very important that you type
  123.                                  path and or drive along with the
  124.                                  filename of the file wish to    
  125.                                  upload, Zmodem is a batch       
  126.                                  protocol that will send all the 
  127.                                  files in your default directory 
  128.                                  if you don't specify!      
  129.                                    
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. Here is the listing for SZ.BAT:
  137.  
  138.                     ECHO OFF   ;same as above
  139.                     
  140.                     DSZ sz %1  ;invokes Zmodem, DSZ the program
  141.                                 name, sz send files (upload), %1
  142.                                 enables you to name the file you 
  143.                                wish to transfer.
  144.  
  145.                     Z-END  ;Sounds the end of transfer
  146.  
  147.                     EXIT   ;Returns you to Procomm.
  148.  
  149.                                 
  150.  
  151.                               NOTES     
  152.  
  153.      The use of Z-END is entirely optional, it is a program that
  154. I wrote with my trusty Pascal compiler, One of the things that I
  155. didn't like about jump to dos transfers was the fact that the
  156. computer could not let you know when the transfer was over.  I
  157. don't know about you but I don't want to sit and stare at the
  158. computer while I'm waiting for a thirty minute file transfer!
  159. So use Z-END and go do what the heck you want.  However, if you
  160. don't want to use it simply delete the Z-END command line from
  161. the enclosed batch files.
  162.  
  163.      I hope you find this helpful.  Now transfer something!
  164. If you have any comments or complaints let me know.  Just leave a
  165. message on the Trans-continental BBS (803)763-1109.
  166.      
  167.      Jerry Clark
  168.      Summerville, S.C.